Python for Bioinformatics

This Jupyter notebook is intented to be used alongside the book Python for Bioinformatics

Chapter 1: Introduction

Listing 1.2: sample.py: Sample Python Program


In [4]:
seq_1 = 'Hello,'
seq_2 = ' you!'
total = seq_1 + seq_2
seq_size = len(total)
print(seq_size)


11